home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Properties / Look_and_Feel_Properties.bsh < prev    next >
Text File  |  2013-07-28  |  2KB  |  67 lines

  1. /*
  2.  * Look_and_Feel_Properties.bsh - a BeanShell macro script for the
  3.  * jEdit text editor - writes current look and feel
  4.  * properties to new text buffer
  5.  * Copyright (C) 2001 John Gellene
  6.  * jgellene@nyc.rr.com
  7.  * http://community.jedit.org
  8.  *
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License
  11.  * as published by the Free Software Foundation; either version 2
  12.  * of the License, or any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with the jEdit program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  22.  *
  23.  * $Id: Look_and_Feel_Properties.bsh 22847 2013-03-16 18:40:28Z ezust $
  24.  *
  25.  * Checked for jEdit 4.0 API
  26.  *
  27.  */
  28. // Localization
  29. final static String ListingLabel = jEdit.getProperty("macro.rs.LookAndFeelProperties.Listing.label", "--listing look and feel property names--");
  30.  
  31. // Process
  32. void lookAndFeelProperties()
  33. {
  34.     defaults = javax.swing.UIManager.getLookAndFeelDefaults();
  35.     sb = new StringWriter();
  36.     Properties p = new Properties();
  37.     for(Iterator it=defaults.entrySet().iterator();it.hasNext();){
  38.         Map.Entry e = it.next();
  39.         
  40.         Object s = e.getKey();
  41.         Object o = e.getValue();
  42.         p.put(s.toString(),o.toString());
  43.     }
  44.     p.store(sb,ListingLabel);
  45.     newbuf = jEdit.newFile(view);
  46.     newbuf.setMode("properties");
  47.     newbuf.insert(0, sb.toString());
  48. }
  49.  
  50. lookAndFeelProperties();
  51.  
  52. /*
  53.     Macro index data (in DocBook format)
  54.  
  55. <listitem>
  56.     <para><filename>Look_and_Feel_Properties.bsh</filename></para>
  57.     <abstract><para>
  58.         Writes an unsorted list of the names of Java Look and Feel
  59.         properties in a new buffer.
  60.     </para></abstract>
  61. </listitem>
  62.  
  63. */
  64.  
  65. // end Look_and_Feel_Properties.bsh
  66.  
  67.